home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 6 / The Arsenal Files 6 (Arsenal Computer).ISO / os2 / ihpfs122.zip / IHPFS.DOC < prev    next >
Text File  |  1996-03-03  |  6KB  |  178 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.                              iHPFS
  13.                     An HPFS Driver for DOS
  14.              Copyright (c) 1993-96, Marcus Better
  15.  
  16.                          Version 1.22
  17.                          March 3, 1996
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. Overview
  27.  
  28. The  OS/2  operating system introduces a new file  system,  the
  29. High  Performance File System (HPFS). HPFS has many  advantages
  30. over  the  FAT  system that DOS uses. However,  it  is  usually
  31. impossible to access files on an HPFS partition without booting
  32. OS/2.
  33.  
  34. iHPFS makes it possible for OS/2 users to use their HPFS parti-
  35. tions  when they boot plain DOS. The HPFS partition is assigned
  36. a  drive  letter,  and can be accessed like  any  DOS  drive  -
  37. although  the current version of iHPFS is restricted  to  read-
  38. only access.
  39.  
  40. iHPFS is easy to install and convenient to use, as it acts like
  41. any  DOS  drive. Data files and programs on the HPFS  partition
  42. may be read and executed, or copied to other drives.
  43.  
  44.  
  45.  
  46. Disclaimer and Licence Agreement
  47.  
  48. The  author  assumes no responsibility for  damages  which  may
  49. result from the use of iHPFS.
  50.  
  51. You  may copy iHPFS on the following conditions: iHPFS must  be
  52. copied  in  unmodified  form,  and  this  documentation,   also
  53. unmodified, must be included.
  54.  
  55. You  may  give iHPFS to your friends or post it for downloading
  56. on  bulletin  boards and ftp sites only as long  as  the  above
  57. conditions are met.
  58.  
  59.  
  60.  
  61. System requirements
  62.  
  63. In order to run iHPFS, you need
  64.     - a 386 processor or better
  65.     - MS-DOS or PC DOS version 4 or later,
  66.       DR DOS version 5 or 6, or Novell DOS version 7.
  67. It  is  also nice if you have an HPFS partition, otherwise  all
  68. you will get from iHPFS is an error message.
  69.  
  70.  
  71.  
  72. How to use iHPFS
  73.  
  74. Run IHPFS.EXE from the DOS prompt. The syntax is:
  75.  
  76.          IHPFS [options] [d:n d:n ...]
  77. or       IHPFS /U [d:]
  78.  
  79. The brackets indicate an optional parameter.
  80.  
  81. d:      The  drive letter that you want to assign to  an  iHPFS
  82.         drive.  You may specify more than one drive  letter  on
  83.         the   same  command  line.  If  no  drive  letters  are
  84.         specified,  iHPFS  will  scan  your  hard  drives   and
  85.         automatically install all HPFS partitions.
  86.  
  87. n       The  number  of  the HPFS partition that  you  want  to
  88.         access.  HPFS  partitions are numbered  (logically)  so
  89.         that  you  can  specify to iHPFS which  partitions  you
  90.         want  to access. The first HPFS partition on the  first
  91.         hard  disk  is partition number 1. Note that only  HPFS
  92.         partitions  are counted - if your system has  two  HPFS
  93.         partitions, they will have numbers 1 and 2,  regardless
  94.         of any other non-HPFS partitions you might have.
  95.  
  96. iHPFS recognizes the following options:
  97.  
  98. /B      Forces  use of extended BIOS functions for disk access.
  99.         This  should  not  normally be necessary,  but  may  be
  100.         appropriate on some systems with large disks.  You  can
  101.         try  this  option if normal operation  does  not  work.
  102.         Also read the section on large IDE drives below.
  103.  
  104. /C=x    This  option  tells  iHPFS to set up  a  cache  in  XMS
  105.         memory.  A  cache can improve performance dramatically.
  106.         x   specifies  the  cache  size,  in  KB,  and  is  not
  107.         optional.  To  use this option, you must  have  an  XMS
  108.         driver like HIMEM.SYS loaded.
  109.  
  110. /L      This  option  makes  it possible to access  files  with
  111.         long  filenames.  These  files  will  be  given  a  new
  112.         filename  and extension. The new name will  consist  of
  113.         the  first  valid charactes (eight or less) before  the
  114.         first  dot  in  the  long filename.  The  extension  is
  115.         computed  from  the long filename, and is  made  up  of
  116.         letters,  digits and a few other characters.  Filenames
  117.         that  begin with a dot will be seen as HPFS.xxx,  where
  118.         xxx is the computed extension.
  119.         
  120. /U      The  /U  option uninstalls iHPFS drives.  If  no  drive
  121.         letter  is  specified, this will  uninstall  all  iHPFS
  122.         drives,  and  remove  the driver from  memory.  (A  few
  123.         hundred bytes will still remain in memory, though.)
  124.  
  125.         If  a  drive letter is specified, only that drive  will
  126.         be removed.
  127.  
  128.  
  129.  
  130. Examples
  131.  
  132. To install iHPFS for all HPFS partitions, type
  133.          IHPFS
  134.  
  135. To  install  iHPFS for all HPFS partitions with  long  filename
  136. support and a 128KB cache, type
  137.          IHPFS /C=128 /L
  138.  
  139. To install only HPFS partition 2 as G:, type
  140.          IHPFS G:2
  141.  
  142. To remove iHPFS drive G:, type
  143.          IHPFS /U G:
  144.  
  145. To uninstall iHPFS completely, type
  146.          IHPFS /U
  147.  
  148.  
  149.  
  150. Large IDE drives
  151.  
  152. There is a problem with accessing IDE (ATA) drives larger  than
  153. 528MB   (528  million  bytes).  The  problem  arises  on   some
  154. configurations  if  a  partition occupies any  cylinders  above
  155. 1024.  iHPFS  can access these partitions if the BIOS  supports
  156. it,  and  will try to do so automatically. If for  some  reason
  157. iHPFS fails to use the BIOS extensions, you may force this with
  158. the  /B  option. This will also tell you whether the  BIOS  has
  159. extended disk functions.
  160.  
  161. If you still cannot access HPFS partitions above cylinder 1024,
  162. you may need a BIOS upgrade or a software driver. Please let me
  163. know  if  you  experience any problems  related  to  large  IDE
  164. drives.
  165.  
  166.  
  167.  
  168. Contacting the author
  169.  
  170. You  are welcome to send me any ideas, comments and suggestions
  171. for  iHPFS. If you have found any bugs, please let me  know.  I
  172. can be reached at the following email address:
  173.          Marcus.Better@abc.se
  174. There  is also a WWW page with the latest information on  iHPFS
  175. at
  176.          http://www.abc.se/~m9111/ihpfs
  177.  
  178.